/-app
/-app/layout
Application.html
TestPage.html
/-app/tests
TestCase.ts
TestPage.ts
Application.ts
/-boot
boot.css
boot.d.ts
early-0.js
early-1-with-knockout.js
/-imports
/-storage
/-storage/attached
/-storage/attached/api
LocalStorageStorage.ts
WebSQLStorage.ts
/-tests
/-tests/storage
/-tests/storage/attached
LocalStorageStorage.ts
_sampleTests.ts
/-typings
stringUtils.ts
teapo.html
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<title>Teapo v0.5j</title>
5
 
6
<style>###base.css###</style>
7
<style>###boot/boot.css###</style> 
8
 
9
</head>
10
<body>
11
 
12
<script>###boot/early-0.js###</script>
13
<script>###imports/knockout/knockout-3.0.0.js###</script>
14
<script>###boot/early-1-with-knockout.js###</script>
15
 
16
<!-- Knockout.js templates --->
17
<script id=Application type="text/html">###app/layout/Application.html###</script>
18
<script id=TestPage type="text/html">###app/layout/TestPage.html###</script>
19
 
20
<script>  
21
 
22
(function(teapo) {
23
 
24
try {
25
###app/Application.ts:build###
26
 
27
try {
28
  var app = new teapo.app.Application();
29
}
30
catch (initiError) {
31
  alert('Error in Teapo initialization: '+initError.message+' '+initError.stack);
32
}
33
 
34
}
35
catch (declarationError) {
36
  alert('Error in Teapo declaration: '+declarationError.message+' '+declarationError.stack);
37
}
38
 
39
 
40
})(teapo);
41
</script>
42
 
43
</body>
44
</html>